home *** CD-ROM | disk | FTP | other *** search
/ Delphi Informant Complete 1995 - 2000 / Delphi Informant Complete 1995 to 2000.iso / Delphi Informant Magazine Complete Works SOURCE CODE 1998.rar / 1998 / Mar / DI9803DB / ssclient / SSClient.dpr < prev    next >
Encoding:
Text File  |  1997-10-11  |  376 b   |  17 lines

  1. program SSClient;
  2.  
  3. uses
  4.   Forms,
  5.   ClientMain in 'ClientMain.pas' {Form1},
  6.   SysStatus in '..\Common\SysStatus.pas',
  7.   CompStream in '..\Common\CompStream.pas',
  8.   SSServer_TLB in '..\..\..\..\Program Files\Borland\Delphi 3\Imports\SSServer_TLB.pas';
  9.  
  10. {$R *.RES}
  11.  
  12. begin
  13.   Application.Initialize;
  14.   Application.CreateForm(TForm1, Form1);
  15.   Application.Run;
  16. end.
  17.